-
Notifications
You must be signed in to change notification settings - Fork 344
添加rt-trace相关软件包 #1931
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
添加rt-trace相关软件包 #1931
Conversation
|
需要先合并功能所在的仓库,重新测试后再合并该分支 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request adds two new RT-Thread packages (RT-Tunnel and Virtual-Terminal) and updates the existing RTI package with version 2.0.0 support and improved configuration options.
- Adds RT-Tunnel package for auxiliary communication with RT-Trace tool
- Adds Virtual-Terminal package for high-speed virtual terminal functionality
- Updates RTI package with v2.0.0 support and version-specific configuration options
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| tools/Virtual-Terminal/package.json | Package metadata for new Virtual-Terminal package |
| tools/Virtual-Terminal/Kconfig | Configuration options for Virtual-Terminal package |
| tools/RT-Tunnel/package.json | Package metadata for new RT-Tunnel package |
| tools/RT-Tunnel/Kconfig | Configuration options for RT-Tunnel with tunnel number and buffer size settings |
| tools/Kconfig | Adds source directives for new RT-Tunnel and Virtual-Terminal packages |
| system/rti/package.json | Updates RTI with v2.0.0 version, adds "insight" keyword, and updates URL format |
| system/rti/Kconfig | Adds v2.0.0 support with version-specific configuration options |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| string | ||
| default "/packages/system/rti" | ||
|
|
||
| # 版本选择 |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment uses Chinese characters. For consistency with the rest of the codebase which uses English comments, consider translating to English: '# Version selection'.
| # 版本选择 | |
| # Version selection |
| config BOARD_SYSTICK_FREQ_IN_HZ | ||
| int "CPU frequency (Hz)" | ||
| default 168000000 | ||
| depends on PKG_USING_RTI_V200 || PKG_USING_RTI_LATEST_VERSION # 仅v2和latest版本可见 |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment uses Chinese characters. For consistency with other comments in the file, consider translating to English: '# Only visible for v2 and latest versions'.
| depends on PKG_USING_RTI_V200 || PKG_USING_RTI_LATEST_VERSION # 仅v2和latest版本可见 | |
| depends on PKG_USING_RTI_V200 || PKG_USING_RTI_LATEST_VERSION # Only visible for v2 and latest versions |
| endif | ||
|
|
||
| # ---------------------------- | ||
| # v2版本仅显示CPU频率配置 |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment uses Chinese characters. For consistency with other comments in the file, consider translating to English: '# Only CPU frequency configuration is shown for v2 version'.
| # v2版本仅显示CPU频率配置 | |
| # Only CPU frequency configuration is shown for v2 version |
| Required for v2.0.0+ version: CPU clock frequency, used for timestamp calculation. | ||
|
|
||
| # ---------------------------- | ||
| # v1版本显示原有其他配置 |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment uses Chinese characters. For consistency with other comments in the file, consider translating to English: '# Original configurations shown for v1 version'.
| # v1版本显示原有其他配置 | |
| # Original configurations shown for v1 version |
| # ---------------------------- | ||
| # v1版本显示原有其他配置 | ||
| # ---------------------------- | ||
| if PKG_USING_RTI_V100 # 仅v1.0.0版本可见 |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment uses Chinese characters. For consistency with other comments in the file, consider translating to English: '# Only visible for v1.0.0 version'.
| if PKG_USING_RTI_V100 # 仅v1.0.0版本可见 | |
| if PKG_USING_RTI_V100 # Only visible for v1.0.0 version |
No description provided.